home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19980901-19981211 / 000184_news@newsmaster….columbia.edu _Thu Oct 22 14:54:52 1998.msg < prev    next >
Internet Message Format  |  2020-01-01  |  4KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id OAA20424
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Thu, 22 Oct 1998 14:54:51 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id OAA12145
  7.     for kermit.misc@watsun; Thu, 22 Oct 1998 14:54:51 -0400 (EDT)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  9. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: Stop automatic resetting of terminal emulation?
  12. Date: 22 Oct 1998 18:54:48 GMT
  13. Organization: Columbia University
  14. Lines: 58
  15. Message-ID: <70nv1o$52p$1@apakabar.cc.columbia.edu>
  16. References: <Pine.WNT.4.05.9810220906420.169-100000@neko.dental.washington.edu>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:9380
  19.  
  20. In article <Pine.WNT.4.05.9810220906420.169-100000@neko.dental.washington.edu>,
  21. Andrew J Pardoe  <ap@u.washington.edu> wrote:
  22. : We use K/2 and K-95 heavily to telnet to different applications throughout
  23. : our hospital. We've run into a problem twice where the remote host will
  24. : reset the terminal emulation of the local K-95 just after the remote login
  25. : sequence is completed.
  26. : It's not a problem when the VT host changes the emulation from VT320 to
  27. : VT220 but we've run into a conundrum when an SCOANSI host changes the
  28. : emulation from SCOANSI (which works perfectly) to ANSI (which doesn't.)
  29. : Two possible solutions present themselves: first, get the host to stop
  30. : sending a request to change terminal emulation; second, set Kermit to
  31. : ignore any requests to change the terminal emulation. Knowing the kind of
  32. : support one receives from Kermit, I decided to start here.
  33. : Any suggestions would be appreciated. I couldn't find this addressed in
  34. : the manual(s) or Dejanews so I'm stuck.
  35.  
  36. >From BUGS.TXT and the BUGS page in the HTML Manual:
  37.  
  38. 253. HINT: Using SCOANSI emulation with SCO hosts
  39.  
  40. There is a type of terminal emulation commonly called ANSI, which is
  41. used by BBS's.  It is very simple -- essentially nothing more than
  42. what you get with ANSI.SYS on a PC.  Then there is the highly evolved
  43. and complex version of it used on the SCO (and Linux) console.  Kermit
  44. 95 supports both; the first emulation is called ANSI; the second is
  45. called SCOANSI.  However, the *name* SCOANSI is unknown on SCO
  46. systems.  They call it just ANSI.  So if a Telnet client such as
  47. Kermit 95 comes in announcing its terminal type as SCOANSI, the SCO
  48. host doesn't recognize it.  In Kermit 95 1.1.8 and later, the Telnet
  49. terminal-type negotiation feature will cause Kermit 95 to change to
  50. another terminal type, most likely "plain old" ANSI.  To work around
  51. this problem in Kermit 95:
  52.  
  53.   set terminal type scoansi
  54.   set telnet terminal-type ansi
  55.   set terminal character-set transparent
  56.  
  57. Or on the SCO system:
  58.  
  59.   Copy the /usr/lib/terminfo/terminfo.src entry for ansi to an
  60.   scoansi.src file, changing "ansi" to "scoansi" in that file, and then
  61.   run tic on it.  In /etc/termcap, add "scoansi" as an alternate name in
  62.   the "ansi" entry.
  63.  
  64. SCO will add "scoansi" as an official terminal type (or, more
  65. precisely, a preinstalled synonym for what it now calls "ansi") in its
  66. next OpenServer release.  (However, as of OSR5.0.4, they have not yet
  67. done so).
  68.  
  69.     Jeffrey Altman * Sr.Software Designer * Kermit-95 for Win32 and OS/2
  70.                  The Kermit Project * Columbia University
  71.               612 West 115th St #716 * New York, NY * 10025
  72.   http://www.kermit-project.org/k95.html * kermit-support@kermit-project.org